home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / clamp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-22  |  108 b   |  8 lines

  1. #include "proctext.h"
  2.  
  3. float
  4. clamp(float x, float a, float b)
  5. {
  6.     return (x < a ? a : (x > b ? b : x));
  7. }
  8.